# Library for visualizing the 3d plot.
library(plotly)
Attaching package: ‘plotly’
The following object is masked from ‘package:ggplot2’:
last_plot
The following object is masked from ‘package:stats’:
filter
The following object is masked from ‘package:graphics’:
layout
I - Introduction
II - Data Preprocessing
Load datasets
dt_issues = read.csv("data/issues_data.csv", header=TRUE)
dt_star = read.csv("data/stargazers.csv", header=TRUE)
dt_user = read.csv("data/users_data.csv", header=TRUE)
Saniety Check
# Inspect the dataset by taking the first 10 rows of each dataset.
dt_issues %>% head(10)
dt_star %>% head(10)
dt_user %>% head(10)